Keycloak REST Services 1.2.0.Final

Path: / admin / realms / {realm} / clients-by-id / {app-name} / roles / {role-name} / composites / client / {clientId}

An client-level roles for a specific client for this role's composite

Path parameters:
realm - realm name (not id!)
app-name -
role-name - role's name (not id!)
clientId -

Resource Methods
Method Summary
NameDescription
GET /admin/realms/{realm}/clients-by-id/{app-name}/roles/{role-name}/composites/client/{clientId}An client-level roles for a specific client for this role's composite

Method Detail

GET /admin/realms/{realm}/clients-by-id/{app-name}/roles/{role-name}/composites/client/{clientId}

An client-level roles for a specific client for this role's composite

HTTP Example:
GET /admin/realms/{realm}/clients-by-id/{app-name}/roles/{role-name}/composites/client/{clientId}
API Example:

RoleContainerResource.getClientRoleComposites({'realm': /* name realm name (not id!) */,
  'app-name': /* name */,
  'role-name': /* roleName role's name (not id!) */,
  'clientId': /* clientId */});

Output:
Set<RoleRepresentation> -
Produces:
application/json

Keycloak REST Services 1.2.0.Final